@charset "utf-8";
/* CSS Document */
body{
	background-color: #DDD;	
	font-family: Verdana, arial, sans serif;
	font-size: 14px;		
}
.caja{
	height: 100%;
	width: 100%;
	display: flex;
	flex-flow:row nowrap;
	flex:1 100%;
}
.cabecera{
	text-align: center;
	order:1;	
	padding: 10px 0 0 0;
	width: 100%;
	background-color: #DDD;
	min-height: 50px;
	display: block;
	font-size: 25px;
}
.navegador{
	order:2;
	background-color: #bbd3ea;
	flex: 1 6 7.5%;
}
.navegador 	a{
	display: block;
	padding: 10px;
	border-bottom-width: 1px;
	border-bottom-style: dotted;
	color: #105dab;
	text-decoration: none;
}
.navegador a:hover{
	background-color: #a8bdee;
	border-right-width: 10px;	
	border-right-style: double;
	border-color: #1575d6;
}
.navegador a:active{
	background-color: #1575d6;
	color: white;
	border-bottom-color: white;
	border-right-width: 10px;
	border-right-style: double;
	border-right-color: white;
}
.seccion{
	flex: 3 1 82.5%;
	order: 3;
	background-color: #EEE;
	padding-left: 10px;
	padding-right: 10px;
	padding-top: 15px;
}
.lateral{
	order:4;
	background-color: #bbd3ea;
	flex: 1 6 10%;
	color: #105dab;
}
.piepagina{
	text-align: center;
	border-radius: 0 0 20px 20px;
	order:900;
	width: 100%;
	background-color: #666;
	min-height: 50px;
}
.seccion .cabecera{
	font-size: 18px;
	border-radius: 0 0 0 0;
	background-color: inherit;	
}
.seccion .articulo{
	display: flex;
	flex-wrap: wrap;
}
.pienoticia{
	text-align: left;
	background-color: #DDD;
	min-height: 25px;
	padding-left: 10px;
}
.galeria{
	display: flex;
	flex-flow:row wrap;
}
.imagen{
	max-height: 200px;
	max-width: 200px;
	border: solid 2px;
	border-color: #444;
	border-radius: 20px;
	margin-top: 10px;
	margin-left: 15px;
	margin-right: 10px;
	margin-bottom: 5px;
	-webkit-box-shadow: 7px 7px 10px 0px rgba(63, 63, 63, 1);
	-moz-box-shadow:    7px 7px 10px 0px rgba(63, 63, 63, 1);
	box-shadow:         7px 7px 10px 0px rgba(63, 63, 63, 1);
}
.seccion .video{
	margin: 0 auto;
	padding: 30px;
		
}
